const go/types.maxTermCount

5 uses

	go/types (current package)
		typeset.go#L404: 		if len(allTerms) > maxTermCount {
		typeset.go#L406: 				check.errorf(atPos(pos), InvalidUnion, "cannot handle more than %d union terms (implementation limitation)", maxTermCount)
		union.go#L50: const maxTermCount = 100
		union.go#L69: 		if len(terms) >= maxTermCount {
		union.go#L71: 				check.errorf(x, InvalidUnion, "cannot handle more than %d union terms (implementation limitation)", maxTermCount)